home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / include / utmp.h < prev    next >
C/C++ Source or Header  |  1990-06-27  |  620b  |  30 lines

  1. /*
  2.  * Copyright (c) 1980 Regents of the University of California.
  3.  * All rights reserved.  The Berkeley software License Agreement
  4.  * specifies the terms and conditions for redistribution.
  5.  *
  6.  *    @(#)utmp.h    5.1 (Berkeley) 5/30/85
  7.  */
  8.  
  9. #ifndef _UTMP
  10. #define _UTMP
  11.  
  12. /*
  13.  * Structure of utmp and wtmp files.
  14.  *
  15.  */
  16.  
  17. #define _PATH_UTMP    "/etc/utmp"
  18. #define  UT_NAMESIZE    8
  19. #define  UT_LINESIZE    8
  20. #define  UT_HOSTSIZE    16
  21.  
  22. struct utmp {
  23.     char    ut_line[UT_LINESIZE];    /* tty name */
  24.     char    ut_name[UT_NAMESIZE];    /* user id */
  25.     char    ut_host[UT_HOSTSIZE];    /* host name, if remote */
  26.     long    ut_time;        /* time on */
  27. };
  28.  
  29. #endif /* _UTMP */
  30.